From: Peter Michael Green Date: Tue, 21 Dec 2021 17:35:22 +0000 (+0000) Subject: Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting... X-Git-Tag: archive/raspbian/140.7.0esr-1+rpi1~7 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=c8c502b899dcb8f4711d41f11c84e9eeec54e3bc;p=firefox-esr.git Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting definitions error Gbp-Pq: Name use-a-define-instead-of-a-typedef-for-do.patch --- diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h index 06f2af0a941..382ae612808 100644 --- a/modules/fdlibm/src/math_private.h +++ b/modules/fdlibm/src/math_private.h @@ -35,7 +35,7 @@ typedef long double __double_t; #else typedef double __double_t; #endif -typedef __double_t double_t; +#define double_t __double_t typedef float __float_t; /*